home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap13 / Fit.java < prev    next >
Encoding:
Java Source  |  1997-04-20  |  181 b   |  9 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class Fit extends Applet {
  5.    public void init() {
  6.       add(new Label("Romeo, Romeo, wherefore art thou, Romeo?"));
  7.    }
  8. }
  9.